page.jsx 303 B

1234567891011
  1. import MonthsExplorer from "@/components/explorer/levels/MonthsExplorer";
  2. /**
  3. * /:branch/:year
  4. *
  5. * Explorer level: lists months for year.
  6. */
  7. export default async function BranchYearPage({ params }) {
  8. const { branch, year } = await params;
  9. return <MonthsExplorer branch={branch} year={year} />;
  10. }